home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / misc / pdflib / pdflib.readme < prev    next >
Text File  |  1999-01-01  |  3KB  |  85 lines

  1. Short: pdflib (libpdf) and tools (68k and PPC)
  2. Type: text/misc
  3. Uploader: Andreas_Kleinert@t-online.de
  4. Author: Thomas Merz, Andreas R. Kleinert (port)
  5.  
  6.  Changes for Amiga 68k/PPC port are documented in
  7.  in "CHANGES.amiga". For usage information, please
  8.  refer to "README".
  9.  
  10.  PPC binary is called have .elf extension and can
  11.  be executed from Shell when being used with
  12.  ppc.library V46+
  13.  
  14.  There are two link library versions included:
  15.  libpdf.lib (68k) and libpdf.a (PPC).
  16.  
  17.  General information follows.
  18.  
  19.  --
  20.  ARK, 7/Mar/99
  21.  
  22. ************************************************************************
  23.  
  24. PDFlib V0.6
  25. ===========
  26. Portable C library for dynamically generating PDF ("Adobe Acrobat") files.
  27. Thomas Merz (tm@muc.de)
  28.  
  29. The PDFlib distribution is available from the following URL:
  30. http://www.ifconnection.de/~tm
  31.  
  32.  
  33. Overview
  34. ========
  35. PDFlib is a C library for generating PDF files. It offers a graphics
  36. API with support for drawing, text, font and images. Call PDFlib
  37. routines from within your client program and voila: dynamic PDF files!
  38. For detailed instructions on PDFlib programming and the associated API,
  39. see the PDFlib Programming Manual, included in PDF format in the
  40. PDFlib distribution.
  41.  
  42. Using a cute facility called SWIG, PDFlib can also be used from
  43. within the Perl, Tcl, and Python scripting languages. As of version
  44. 0.6, scripting support is only available for Unix systems.
  45.  
  46. Features
  47. ========
  48. - basic drawing
  49.   lines, rectangles, arcs, Bezier curves, ...
  50.   gray scale or RGB color
  51. - text
  52.   text in different fonts and sizes, formatting
  53.   type 1 font embedding, AFM support
  54. - output formats
  55.   ASCII85, ASCIIHex, or binary
  56. - graphics file formats
  57.   support for TIFF, GIF, and JPEG files
  58. - hypertext features
  59.   bookmarks (outline entries)
  60.   page transitions
  61.  
  62.  
  63. PDFlib application ideas
  64. ========================
  65. - Dynamic PDF generation via CGI from a Web server
  66. - Directly convert text or graphics files to PDF
  67. - Report generator for applications such as databases
  68. - Substitute for Adobe's PDFwriter
  69. - ... you name it!
  70.  
  71.  
  72. Supplied Library Clients
  73. ========================
  74. PDFlib includes some demo, test, and "real" client programs:
  75.  
  76. - hello:        simple "hello, world!" program
  77. - pdfdemo:      illustrates many PDF features
  78. - imagepdf:     convert GIF/TIFF/JPEG images to PDF
  79. - text2pdf:     convert text files to PDF
  80. - pdfclock:     generate a PDF file with one or more analog clock images
  81. - pdfgraph:     draw a graph according to data read from a text file
  82.  
  83. - the hello and pdfclock samples are also available in Perl, Tcl,
  84.   and Python implementations
  85.